/* 整体页面样式 */
body {
    margin: 0;
    padding-top: 60px; /* 为顶部固定的横幅留出空间 */
    background-color: #000; /* 修改背景颜色为黑色 */
}

/* 黑色背景横幅样式 */
.banner {
    background-color: #000;
    padding: 20px;
    display: flex;
    justify-content: center;
    gap: 150px; /* 修改按钮间距为 150px */
    position: fixed; /* 固定在顶部 */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* 确保横幅在最上层 */
}

/* 按钮样式 */
.button {
    color: white;
    text-decoration: none;
    font-size: 32px;
    padding: 10px 20px;
    transition: color 0.3s;
    /* 去除浏览器默认样式 */
    -webkit-tap-highlight-color: transparent; 
    -webkit-touch-callout: none;
    user-select: none;
}

/* 鼠标悬停时按钮颜色变化 */
.button:hover {
    color: #ff0000;
}

/* 按钮点击时的样式 */
.button:active {
    color: white;
    background-color: transparent; /* 确保背景颜色不变 */
    outline: none; /* 去除聚焦时的轮廓 */
}

/* 按钮聚焦时的样式 */
.button:focus {
    color: white;
    background-color: transparent;
    outline: none;
}

/* 按钮访问后的样式 */
.button:visited {
    color: white;
}

/* 页面内容样式 */
.content {
    padding: 20px;
}
